func reflect.stringFor

34 uses

	reflect (current package)
		type.go#L737: 	panic("reflect: Elem of invalid type " + stringFor(t))
		type.go#L1696: 			if !(stringFor(rtypeOff(section, offs[h])) >= s) {
		type.go#L1709: 			if stringFor(typ) != s {
		type.go#L1767: 		s = "chan<- " + stringFor(typ)
		type.go#L1769: 		s = "<-chan " + stringFor(typ)
		type.go#L1771: 		typeStr := stringFor(typ)
		type.go#L1815: 		panic("reflect.MapOf: invalid key type " + stringFor(ktyp))
		type.go#L1825: 	s := "map[" + stringFor(ktyp) + "]" + stringFor(etyp)
		type.go#L1998: func stringFor(t *abi.Type) string {
		type.go#L2012: 			repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
		type.go#L2014: 			repr = append(repr, stringFor(t)...)
		type.go#L2028: 		repr = append(repr, stringFor(t)...)
		type.go#L2057: 		panic("isReflexive called on non-key type " + stringFor(t))
		type.go#L2084: 		panic("needKeyUpdate called on non-key type " + stringFor(t))
		type.go#L2167: 	s := "bucket(" + stringFor(ktyp) + "," + stringFor(etyp) + ")"
		type.go#L2233: 	s := "[]" + stringFor(typ)
		type.go#L2400: 					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
		type.go#L2496: 		repr = append(repr, (" " + stringFor(ft))...)
		type.go#L2773: 		panic("reflect.typeptrdata: unexpected type, " + stringFor(t))
		type.go#L2796: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
		type.go#L2972: 		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
		type.go#L2975: 		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
		type.go#L3002: 		s = "methodargs(" + stringFor(rcvr) + ")(" + stringFor(&t.Type) + ")"
		type.go#L3004: 		s = "funcargs(" + stringFor(&t.Type) + ")"
		value.go#L440: 			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
		value.go#L487: 		println("reflect.call", stringFor(&t.Type))
		value.go#L634: 					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
		value.go#L760: 					print("kind=", steps[0].kind, ", type=", stringFor(typ), "\n")
		value.go#L3373: 	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
		value.go#L3385: 		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())